body, html {
	height: 100%;
	margin: 0;
   }

.center-container {
	display: flex;
	justify-content: center; /* Centers horizontally */
	align-items: center;     /* Centers vertically */
	height: 100vh;           /* Takes up 100% of the viewport height */
	font-family: Arial, sans-serif;
	font-size: 3rem;         /* Adjust the size of the word here */
	color: #333;             /* Text color */
   }
